home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-294.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12342);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2002-1365");
  13.  
  14.  name["english"] = "RHSA-2002-294: fetchmail";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Fetchmail packages are available for Red Hat Linux Advanced Server
  21.   which close a remotely-exploitable vulnerability in unpatched versions of
  22.   Fetchmail prior to 6.2.0.
  23.  
  24.   [Updated 06 Feb 2003]
  25.   Added fixed packages for Advanced Workstation
  26.  
  27.   Fetchmail is a remote mail retrieval and forwarding utility intended for
  28.   use over on-demand TCP/IP links such as SLIP and PPP connections. A bug
  29.   has been found in the header parsing code in versions of Fetchmail prior
  30.   to 6.2.0.
  31.  
  32.   The bug allows a remote attacker to crash Fetchmail and potentially execute
  33.   arbitrary code by sending a carefully crafted email which is parsed by
  34.   Fetchmail.
  35.  
  36.   All users of Fetchmail are advised to upgrade to the errata packages
  37.   containing a backported fix which corrects this issue.
  38.  
  39.  
  40.  
  41.  
  42. Solution : http://rhn.redhat.com/errata/RHSA-2002-294.html
  43. Risk factor : High';
  44.  
  45.  script_description(english:desc["english"]);
  46.  
  47.  summary["english"] = "Check for the version of the fetchmail packages";
  48.  script_summary(english:summary["english"]);
  49.  
  50.  script_category(ACT_GATHER_INFO);
  51.  
  52.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  53.  family["english"] = "Red Hat Local Security Checks";
  54.  script_family(english:family["english"]);
  55.  
  56.  script_dependencies("ssh_get_info.nasl");
  57.  
  58.  script_require_keys("Host/RedHat/rpm-list");
  59.  exit(0);
  60. }
  61.  
  62. include("rpm.inc");
  63. if ( rpm_check( reference:"fetchmail-5.9.0-21.7.3", release:"RHEL2.1") )
  64. {
  65.  security_hole(0);
  66.  exit(0);
  67. }
  68. if ( rpm_check( reference:"fetchmailconf-5.9.0-21.7.3", release:"RHEL2.1") )
  69. {
  70.  security_hole(0);
  71.  exit(0);
  72. }
  73.  
  74. if ( rpm_exists(rpm:"fetchmail-", release:"RHEL2.1") )
  75. {
  76.  set_kb_item(name:"CVE-2002-1365", value:TRUE);
  77. }
  78.  
  79. set_kb_item(name:"RHSA-2002-294", value:TRUE);
  80.